NoAVConnectionException
| Kind of class: | public class |
|---|---|
| Package: | com.smartfoxserver.redbox.exceptions |
| Inherits from: | Error |
| Author: | The gotoAndPlay() Team http://www.smartfoxserver.com http://www.gotoandplay.it |
| Classpath: | com.smartfoxserver.redbox.exceptions.NoAVConnectionException |
| File last modified: | Tuesday, 26 February 2008, 17:19:35 |
A RedBox exception.
Summary
Constructor
- NoAVConnectionException (message:String)
- Thrown when the connection to Red5 is not available.
Constructor
NoAVConnectionException
public function NoAVConnectionException (
message:String)
Thrown when the connection to Red5 is not available.
This exception is raised when a RedBox method is called which requires a connection to Red5, but this is not currently available.
This exception is raised when a RedBox method is called which requires a connection to Red5, but this is not currently available.
Parameters:
message:
the error message.
Example:
- The following example shows how to handle the "NoAVConnectionException" exception.
try { avClipMan.getStream() } catch (err:NoAVConnectionException) { trace (err.message) }